ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV, WEBDEV and WINDEV Mobile 2024 feature!
Help / WLanguage / WLanguage functions / Communication / Drive functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Deletes a Google Docs Editor file from Google Drive.
Example
oOAuth2Param is OAuth2Parameters
oOAuth2Param.ClientID = "client_id"
oOAuth2Param.ClientSecret = "client_secret"
oOAuth2Param.RedirectionURL = "http://localhost:9000/"

DriveGoogle is gglDrive
DriveGoogle = GglDriveConnect(oOAuth2Param)

IF DriveGoogle.SupprimeFichier("/MesRépertoires/Fichier.txt") = False THEN
Error("Impossible de supprimer le fichier demandé", ErrorInfo())
RETURN
END
Syntax
<Result> = <Google Drive>.DeleteFile(<File to delete>)
<Result>: Boolean
  • True if the file was deleted,
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Google Drive>: gglDrive variable
Name of the gglDrive variable that corresponds to the Google Drive service to be used. The connection to the drive must have been previously established. Otherwise, the element is not deleted.
<File to delete>: GglFile variable
Name of the GglFile variable that corresponds to the file to be manipulated.
Remarks
A file deleted with <gglDrive variable>.DeleteFile cannot be recreated directly. The user must log in again to recreate the file.
Business / UI classification: Business Logic
Component: wd290ggl.dll
Minimum version required
  • Version 2024
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/10/2024

Send a report | Local help